home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / enlightenment / e_about.h next >
C/C++ Source or Header  |  2006-01-09  |  475b  |  28 lines

  1. /*
  2.  * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
  3.  */
  4. #ifdef E_TYPEDEFS
  5.  
  6. typedef struct _E_About E_About;
  7.  
  8. #else
  9. #ifndef E_ABOUT_H
  10. #define E_ABOUT_H
  11.  
  12. #define E_ABOUT_TYPE 0xE0b01013
  13.  
  14. struct _E_About
  15. {
  16.    E_Object             e_obj_inherit;
  17.    
  18.    E_Win               *win;
  19.    Evas_Object         *bg_object;
  20.    void                *data;
  21. };
  22.  
  23. EAPI E_About  *e_about_new         (E_Container *con);
  24. EAPI void      e_about_show        (E_About *about);
  25.     
  26. #endif
  27. #endif
  28.